home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / zoc205.zip / INSTALL.FIL / SCRIPT / RXSAMPLE / MISC / 6_REPLY < prev    next >
Text File  |  1994-09-23  |  749b  |  31 lines

  1.  
  2. ////////////////////////////////////////////////////////
  3. // AUTORESPONSE
  4. ////////////////////////////////////////////////////////
  5. // with the RESPOND function you may setup automatic
  6. // responses for incoming data. These responses are 
  7. // checked within a DELAY or WAIT command.
  8.  
  9. // There is a limitation of 16 responses, each having
  10. // 80 characters max.
  11.  
  12. // This is a example of how to login to a bbs and skip
  13. // across the initial news (assumed that they have
  14. // a "- press enter to continue -" prompt)
  15.  
  16. // Setup a few responses
  17. reply "Name" "ZOC^M"
  18. reply "Password" "SECRET^M"
  19. reply " continue -"  "^M"
  20.  
  21. // Dial in
  22. dial 999-8888-7777
  23.  
  24. // wait and leave the work to the responses
  25. timeout 3600
  26. wait "NO CARRIER"
  27.  
  28.  
  29.  
  30.  
  31.